e1db24b75a1c38307b31d0b32ca65ebb71c03c94,java/org/apache/catalina/startup/ContextConfig.java,FragmentJarScannerCallback,scan,#File#boolean#,2813
Before Change
InputSource source =
new InputSource(fragmentFile.toURI().toURL().toString());
source.setByteStream(stream);
parseWebXml(source, fragment, true);
} else {
// If there is no web.xml, normal folder no impact on
// distributable
After Change
InputSource source =
new InputSource(fragmentFile.toURI().toURL().toString());
source.setByteStream(stream);
if (!webXmlParser.parseWebXml(source, fragment, true)) {
ok = false;
}
} else {